home *** CD-ROM | disk | FTP | other *** search
/ Interactive Quarterly / The Best of New Machine Publishing 1 - Disc 4: Interactive Quarterly.iso / pc / cafe / ultslots.dir / 00225.ls < prev    next >
Encoding:
Text File  |  1996-10-06  |  652 b   |  23 lines

  1. on mouseDown
  2.   set num to the memberNum of sprite 5
  3.   set QTname to the name of member num
  4.   set the sound of member QTname to 0
  5.   set loopstart to random(1470) / 2
  6.   set loopend to loopstart + random(700)
  7.   set the movieTime of sprite 37 to loopstart
  8.   set the movieRate of sprite 37 to 1
  9.   if the movieTime of sprite 37 > loopend then
  10.     set loopend to loopend / 2
  11.     set the movieTime of sprite 37 to loopstart
  12.   end if
  13.   updateStage()
  14. end
  15.  
  16. on mouseUp
  17.   set the movieRate of sprite 37 to 0
  18.   set num to the memberNum of sprite 5
  19.   set QTname to the name of member num
  20.   set the sound of member QTname to 1
  21.   set the movieRate of sprite 5 to 1
  22. end
  23.